home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-14 | 608 b | 26 lines | [TEXT/CWIE] |
- // VideoAccessor.h, the VideoAccessor class, to be used for direct access to
- // video pixel-maps.
-
- // copyright © 1995, Macneil Shonle. All rights reserved.
-
- #ifndef __VIDEOACCESSOR__
- #define __VIDEOACCESSOR__
-
- #ifndef __BUFFERACCESSOR__
- #include <BufferAccessor.h>
- #endif
-
- // class VideoAccessor
- class VideoAccessor : public BufferAccessor {
- public:
- VideoAccessor(const Rect&) throw(xalloc);
- virtual ~VideoAccessor();
-
- VideoAccessor& operator=(const VideoAccessor&) throw(xalloc);
- VideoAccessor& operator=(const Rect&) throw(xalloc);
-
- protected:
- void construct(const Rect&) throw(xalloc);
- };
-
- #endif